home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / prog_gen / instal11.zip / SETUP.DPR < prev    next >
Text File  |  1996-01-05  |  373b  |  19 lines

  1. program Setup;
  2.  
  3. uses
  4.   Forms,
  5.   Routines in 'ROUTINES.PAS' {Dialogue},
  6.   Disque in 'DISQUE.PAS',
  7.   Lecture in 'LECTURE.PAS',
  8.   Decla in 'DECLA.PAS',
  9.   Uinfo in 'UINFO.PAS' {Info};
  10.  
  11. {$R *.RES}
  12.  
  13. begin
  14.   Application.Title := 'Setup Program 1.00a';
  15.   Application.CreateForm(TDialogue, Dialogue);
  16.   Application.CreateForm(TInfo, Info);
  17.   Application.Run;
  18. end.
  19.